383. 赎金信
为保证权益,题目请参考 383. 赎金信(From LeetCode).
解决方案1
Python
python
# 383. 赎金信
# https://leetcode-cn.com/problems/ransom-note/
################################################################################
from collections import Counter
class Solution:
def canConstruct(self, ransomNote: str, magazine: str) -> bool:
cou1 = Counter(ransomNote)
cou2 = Counter(magazine)
for k, v in cou1.items():
if not (k in cou2 and cou2[k] >= v):
return False
return True
################################################################################
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18